home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr14 / text_ref.zip / HARDWARE.TXT < prev    next >
Text File  |  1995-01-19  |  29KB  |  645 lines

  1.                          Computer Help References
  2.                              version 1.19.95
  3.  
  4. ────────────────────────────────────────────────────────────────────────────
  5.                           H  A  R  D  W  A  R  E
  6. ────────────────────────────────────────────────────────────────────────────
  7.  
  8. As new information is added, it will appear at the beginning of each
  9. specific section.  All new information will have the date it was added in
  10. the header.  If you find something you've read before that is marked as a
  11. new addition, it is due to a correction, or addition to that topic.
  12.  
  13. ────────────────────────────────────────────────────────────────────────────
  14.  
  15. Testing for a Defective Pentium (586) Chip
  16. ==========================================
  17. -> Added on January 19, 1994
  18.  
  19. Here is a test that will uncover the Pentium bug if you have it.  This test
  20. was used in Excell spreadsheet but others should give the same results!
  21.  
  22.                            Pentium                486
  23.   ───────────────────────────────────────────────────────────
  24.       1. Take this number  4195835              4195835
  25.       2. Multiplied by     3145727              3145727
  26.       3. Divide by         3145727              3145727
  27.   ───────────────────────────────────────────────────────────
  28.       4. Your answer       4195579              4195835
  29.  
  30. Good Luck with the test!
  31.  
  32. * David Coller @ 1:234/40
  33.  
  34. ────────────────────────────────────────────────────────────────────────────
  35.  
  36. 3 Different types of "slots"
  37. ============================
  38. -> Added on January 19, 1994
  39.  
  40. VL-Bus connectors have _three_ in-line expansion slots.
  41.  
  42. Just like the 16bit ISA (AT) bus added an extension to the end of the PC's
  43. 8bit slot, the VL-Bus slot adds yet another, like this:
  44.  
  45.         ---Three--- -----Four------ -One--
  46.         -VLB slots- ---ISA slots--- -8bit-
  47.  
  48.       ┌─────────────────────────────────────┐
  49.       │ ┌─┐ ┌─┐ ┌─┐ ┌─┐ ┌─┐ ┌─┐ ┌─┐ ┌─┐     │ \
  50.       │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │     │   \
  51.       │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │     │    8bit portion
  52.       │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │     │    of the bus
  53.       │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │     │   /
  54.       │ └─┘ └─┘ └─┘ └─┘ └─┘ └─┘ └─┘ └─┘     │ /
  55.       │ ┌─┐ ┌─┐ ┌─┐ ┌─┐ ┌─┐ ┌─┐ ┌─┐         │ \
  56.       │ │ │ │ │ │ │ │ │ │ │ │ │ │ │         │  16bit portion
  57.       │ │ │ │ │ │ │ │ │ │ │ │ │ │ │         │  of the bus
  58.       │ └─┘ └─┘ └─┘ └─┘ └─┘ └─┘ └─┘         │ /
  59.       │ ┌─┐ ┌─┐ ┌─┐                         │ \
  60.       │ │ │ │ │ │ │                         │   \
  61.       │ │ │ │ │ │ │ ┌─────┐                 │    32bit portion
  62.       │ │ │ │ │ │ │ │ 486 │                 │    of the bus
  63.       │ │ │ │ │ │ │ │ CPU │                 │   /
  64.       │ └─┘ └─┘ └─┘ └─────┘ VLB motherboard │ /
  65.       └─────────────────────────────────────┘
  66.  
  67. * Vernon.Frazee@f71.n135.z1.fidonet.org
  68.  
  69. ────────────────────────────────────────────────────────────────────────────
  70.  
  71. 3 Ways to Control a Hard Drive
  72. ==============================
  73. -> Added on January 3, 1994
  74.  
  75. I have just gotten some new experience with 32bda and BIOSes ...
  76.  
  77. A friend of mine has a new Pentium, and he wasn't able to get Windows 32 bit
  78. DISK access (32bda) working on his system.  I looked into his IDE setup in
  79. BIOS and found that he was using the new EIDE drive access methods.
  80.  
  81. Standard IDE is accessed with what is known as standard CHS (Cylinder/Head/
  82. Sector), but EIDE has two other methods over those: Extended CHS, and LBA
  83. (Logical Block Access).  Both ECHS and LBA are methods for accessing IDE hard
  84. drives larger than 528MB.  LBA is the most sophisticated protocol, and ECHS
  85. is an intermediate protocol between LBA and the old CHS.
  86.  
  87. His BIOS setup autodetects which method is suitable to use with his drives,
  88. and chooses appropriately.  It first checks for LBA, then ECHS, and finally
  89. standard CHS.  Often the smaller IDE drives won't work with LBA at all, so
  90. the next method they try is ECHS.  There is almost no difference between CHS
  91. and ECHS as far as the drives are concerned, and the autodetect usually
  92. settles on ECHS.
  93.  
  94. This is where the problem arises: the BIOS is using ECHS, while the 32bda of
  95. Windows (which is a replacement for BIOS while running Windows) emulates only
  96. CHS.
  97.  
  98. The standard 32bda polls the BIOS for information regarding the drive
  99. physical characteristics, and finds that it doesn't really understand the
  100. format, because the information is in ECHS format not CHS format.
  101.  
  102. I was able to solve his problem by simply going into the BIOS setup and
  103. manually overriding the autodetected method with a standard CHS method.
  104.  
  105. There is no need to use LBA or ECHS unless you have drives that are bigger
  106. than 528MB, so you might as well use standard CHS.  There are no performance
  107. benefits to using the newer access protocols either over standard CHS, they
  108. are just there to allow access to drives greater than 528MB, so you might as
  109. well use standard CHS.
  110.  
  111. * Yousuf Khan @ 1:163/525 or 1:163/215
  112.  
  113. ────────────────────────────────────────────────────────────────────────────
  114.  
  115. Bigger Hardrive Means Bigger Appetite
  116. =====================================
  117. -> Added on January 3, 1994
  118.  
  119. Did you just buy and install a BIG hard disk?  You probably took the easy
  120. route and partitioned it as one whole physical drive, right?  Did you know
  121. that a large partition on a hard disk is one of the biggest waste of hard
  122. disk space?
  123.  
  124. Here is a simple chart of space used by each cluster in relation to the
  125. actual size of the Hard Drive itself.
  126.  
  127.         Size of Partition in MB   Size of Cluster in Kbytes
  128.  
  129.              16  -  127.99                     2
  130.             128  -  255.99                     4
  131.             256  -  511.99                     8
  132.             512  - 1023.99                    16
  133.            1024 and greater                   ??
  134.  
  135. Where the waste comes in are those files that are smaller that the size of
  136. each individual cluster.  Have you ever considered how many files you have
  137. that are that small?
  138.  
  139. As the MB partitioning increase, the amount of wasted disk space increases
  140. because those small files are going to consume the next largest cluster size.
  141.  
  142. As an example ... the majority of CONFIG.SYS and AUTOEXEC.BAT files are
  143. probably under 1K.  If these two files were on a partitioned drive of 420MB,
  144. those two files would consume 16K of disk space even though together they are
  145. less than 2K in size.
  146.  
  147. I guess the answer to the question is the effort worth it?!?  Breaking down
  148. your large hard drive after it's in use could involve fooling with several
  149. drives to move between during each operation; starting the backup programs
  150. again and again when the tape has finished with one drive and trying to keep
  151. track of the tapes; or worse yet using a "million" floppies.   And having
  152. compressed drives can only complicate the situation.
  153.  
  154. The choice is yours!
  155.  
  156. * Bill Gaston @ 1:382/91
  157.  
  158. ────────────────────────────────────────────────────────────────────────────
  159.  
  160. P.O.S.T. Screen Error Messages
  161. ==============================
  162. -> Added on December 7, 1994
  163.  
  164.     01x  Undetermined problem errors;
  165.     02x  Power supply errors;
  166.     1xx  System board errors;
  167.     101  Interrupt failure
  168.     102  Timer failure
  169.     103  Timer interrupt failure
  170.     104  Protected mode failure
  171.     105  Last 8042 command not accepted
  172.     106  Converting logic test
  173.     107  Hot non-maskable interupt test
  174.     108  Timer bus test
  175.     109  Memory select error
  176.     110  PS/2 parity check error
  177.     111  PS/2 memory adapter error
  178.     112  PS/2 MicroChannel arbitration error
  179.     113  PS/2 MicroChannel arbitration error
  180.     121  Unexpected hardware interrupts occured
  181.     131  PC system board cassette port wrap test failure
  182.     161  System options not set (run SETUP) - dead battery
  183.     162  System options not set (run SETUP) - CMOS checksum/config. error
  184.     163  Time and date not set (run SETUP) - clock not updating
  185.     164  Memory size error (run SETUP) - CMOS setting does not match memory
  186.     165  PS/2 system options not set
  187.     166  PS/2 MicroChannel adapter time-out error
  188.     199  User indicated INSTALLED DEVICES list is not correct
  189.     2xx  Memory (RAM) errors;
  190.     201  Memory test failure, error location will be displayed in hexadecimal
  191.     202  Memory address error, address lines 00-15
  192.     203  Memory address error, address lines 16-13
  193.     215  PS/2 motherboard memory failure
  194.     216  PS/2 motherboard memory failure
  195.     3xx  Keyboard errors;
  196.     301  Keyboard did not respond to software reset or a stuck key failure
  197.           was detected.  If a stuck key, the scan code for the key is
  198.           displayed in hexadecimal
  199.     302  System unit keylock is locked
  200.     303  Keyboard or system unit failure
  201.     304  Keyboard or system unit failure; keyboard clock high
  202.     305  PS/2 keyboard fuse (on system board) error
  203.  │  4xx  PS/2 system board parallel port errors;
  204.  │  401  PS/2 system board parallel port failure
  205.     4xx  Monochrome display adapter (MDA) errors;
  206.     401  Monochrome memory test, horizontal sync frequency test, or video
  207.           test failure
  208.     408  User indicated display attributes failure
  209.     416  User indicated character set failure
  210.     424  User indicated 80x25 mode failure
  211.     432  Parallel port test failure; monochrome display adapter
  212.     5xx  Color Graphics Adapter (CGA) errors;
  213.     501  CGA memory test, horizontal sync frequency test, or video test
  214.           failure
  215.     508  User indicated display attributes failure
  216.     516  User indicated character set failure
  217.     524  User indicated 80x25 mode failure
  218.     540  User indicated 320x200 mode failure
  219.     548  User indicated 600x200 mode failure
  220.     6xx  Floppy drive/adapter errors;
  221.     601  Floppy drive/adapter power on self test failure
  222.     602  Drive test failure; disk boot record is not valid
  223.     606  Disk chainline function failure; drive error
  224.     607  Disk is writeprotected; drive error
  225.     608  Bad command; drive error
  226.     610  Disk initialization
  227.     611  Time-out; drive error
  228.     612  Bad controller chip
  229.     613  Bad direct memory access; drive error
  230.     614  Bad direct memory access; boundry overrun
  231.     615  Bad index timing; drive error
  232.     616  Drive speed error
  233.     621  Bad seek; drive error
  234.     622  Bad cyclic redundancy check; drive error
  235.     623  Record not found; drive error
  236.     624  Bad address mark; drive error
  237.     625  Bad controller chip; seek error
  238.     626  Disk data compare error
  239.     7xx  8087, 80227, or 80397 math coprocessor errors;
  240.     9xx  Parallel printer adapter errors;
  241.     901  Parallel printer adapter test failure
  242.  
  243. * jamie.hermans@tech-spk.alive.ampr.ab.ca
  244.   or FidoNet: Jamie Hermans @ 1:342/707
  245.  
  246. ────────────────────────────────────────────────────────────────────────────
  247.  
  248. Communications Terms
  249. ====================
  250. -> Added on November 5, 1994
  251.  
  252.  ╔════════╗                                               ╔════════╗
  253.  ║Computer║   DTE-              DCE-               DTE-   ║Computer║
  254.  ║   A    ║   Rate   ┌─ A ─┐    Rate     ┌─ B ─┐   Rate   ║   B    ║
  255.  ║        ╠══════════╡Modem├─────────────┤Modem╞══════════║        ║
  256.  ╚════════╝          └─────┘             └─────┘          ╚════════╝
  257.  
  258. (Figure 1)
  259.  
  260. Pictured above is a brief sketch of a complete signal circuit, consisting
  261. of two computers (A & B) interconnected thru their Modems.
  262.  
  263.  
  264. Five Definitions
  265. ~~~~~~~~~~~~~~~~
  266. (as they relate to the above Figure 1)
  267.  
  268. BAUD RATE:  The actual rate of signal transitions per second.  Since each
  269.     signal may represent more than one bit, it is not the same as BPS.
  270.  
  271. BPS or Bits Per Second:  The number of data bits per second transmitted
  272.     between two modems.  Sometimes incorrectly called the baud rate.  (See
  273.     Baud Rate above)
  274.  
  275. DCE (Data Communication Equipment) rate:  The transmission speed of the
  276.     interface between two modems.  The DCE rate and BPS are synonymous.
  277.  
  278. DTE (Data Terminal Equipment) rate:  The transmission speed of the interface
  279.     between a computer / terminal and it's modem.  Includes the RS - 232
  280.     Serial ports.  Baud rate is frequently cited in this interface (*as is
  281.     bps*), all of which is depicted on Figure 1.  Note DTE / baud exists on
  282.     both ends, while DCE / bps is between the modems.  DTE is often called
  283.     the Port area (and Port Speed) since this is where the Serial Ports are.
  284.  
  285. THROUGHPUT: The DCE rate expressed in cps (Characters/second = bytes/sec).
  286.  
  287. In a modern 9600 bps modem (often incorrectly called a 9600 baud modem) the
  288. signal rate is actually 2400 baud.  It is encoded with four data bits per
  289. baud, resulting in a DCE rate of 9600 bps.  The 14,400 bps modem is much the
  290. same, but encoded with 6 data bits per baud.  In a 2400bps modem (often
  291. incorrectly called a 2400 baud modem) the signal rate is actually 600 baud.
  292. It is encoded with four data bits per baud, resulting in a DCE rate of
  293. 2400bps. The 1200bps modem is much the same, but encoded with only 2 data
  294. bits per baud.
  295.  
  296. Since the normal BBS communication schemes employ 8 bits (for each Byte, or
  297. character) + 1 start bit, + 1 stop bit = 10 bits/character, it follows that
  298. the DCE rate is 10 times the character rate.  Therefore a DCE rate of
  299. 2400bps results in a Thruput of ~240cps.  As this represents a 100%
  300. efficiency, this figure is not attainable (without additional techniques),
  301. but can be very closely approached using a modern protocol like Zmodem
  302. MobyTurbo (tm), which can achieve a thruput of 235 to 238cps on .ZIP'd
  303. files.  High speed modems usually utilize error correction to exceed the
  304. 100% efficiency rate (~1100 cps at 9600 & ~1650 at 14400).
  305.  
  306.  
  307. MODEM PROTOCOLS
  308. ~~~~~~~~~~~~~~~
  309.  
  310. A variety of ITU-TSS V. standards as well as Microcom MNP standards apply
  311. to modems.
  312.  
  313.  
  314. MODULATION PROTOCOLS
  315. ~~~~~~~~~~~~~~~~~~~~
  316.  
  317.     V.17     Emerging ITU-TSS standard for 14400/second FAX.
  318.               V.17 also supports a more robust 9600 bits/second than V.29
  319.     V.21     Transmission at up to 300 bits/second (300 baud)
  320.     V.22     Transmission at 1200 bits/second      (600 baud)
  321.     V.22bis  Transmission at 2400 bits/second      (600 baud)
  322.     V.23     1200 bps ITU-TSS operation with 75 bps back channel (Europe)
  323.     V.25     Answer sequence for calls originating outside US & Canada
  324.     V.25bis  For Synchronous comm using HDLC & character oriented protocols
  325.     V.27ter  ITU-TSS standard for 2400 & 4800 bit/second (Group III) Fax
  326.     V.29     ITU-TSS standard for 9600 bit/second (Group III) FAX
  327.     V.32     Transmission at 4800 & 9600 bits/second (2400 baud)
  328.     V.32bis  Transmission at 4800, 7200, 9600, 12000 & 14400 bps (2400 baud)
  329.     V.34     Transmission at 2400 to 28800 bps in 2400 steps
  330.     V.54     Analog, digital and remote digital loopback testing
  331.  
  332.     TIA/EIA-578 Service Class 1 Asynchronous Fax DCE Control Standard
  333.     TIA/EIA-592 Service Class 2.0 Asynchronous Fax DCE Control Standard
  334.  
  335. Note that in the United States of America, Bell 103 and Bell 212a are the
  336. protocols that are widely used for 300 and 1200 bps respectively.  In
  337. Europe, and the rest of the world, V.21 and V.22 are the protocols used for
  338. these speeds.
  339.  
  340.  
  341. ERROR-CONTROL PROTOCOLS
  342. ~~~~~~~~~~~~~~~~~~~~~~~
  343.  
  344.     MNP 2-4   Detects and corrects transmission errors.  MNP standards do
  345.               not include full V.42 compliance.  Each MNP level adds
  346.               additional features. The top level, Version 4, strips start
  347.               and stop bits and optimizes data packets for line conditions.
  348.  
  349.     V.42      Handshaking procedure that determines what levels of error
  350.               correction are common between two modems.  LAP-M, a more
  351.               sophisticated but similar protocol to MNP Level 4, is defined
  352.               as the primary error correction protocol in V.42 MNP Level 4,
  353.               providing backwards compatibility with all MNP levels except
  354.               1 is recommended as an Annex error correction protocol.
  355.               Therefore, all V.42 modems should be compatible with all MNP
  356.               2-4 modems as well.
  357.  
  358.     MNP 10    A set of Adverse Channel Enhancements that helps modems work
  359.               better with poor connections, compensating for line noise,
  360.               echo problems, and limited bandwidth.  Modems will make
  361.               multiple attempts to set up a transmission link, optimize the
  362.               size of data packets for a connection, and adjust to the
  363.               highest rate possible.  The protocol was originally developed
  364.               to improve connections with cellular modem connections, but it
  365.               may improve land line connections as well.
  366.  
  367.  
  368. DATA-COMPRESSION PROTOCOLS
  369. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  370.  
  371.     MNP 5     Provides compression as great as 2 to 1 on some files.  Not
  372.               related to V.42bis, but they often appear in the same modems.
  373.               Slows down compressed file transfers.
  374.  
  375.     V.42bis   Provides compression as great as 4 to 1 on some files.
  376.               Doesn't itself include MNP 5 compatibility, and will not slow
  377.               down transfer of compressed files.
  378.  
  379.     T.4       Specifications for encoding FAX data according to one of
  380.               several possible compression algorithms.
  381.  
  382.     T.30      A standard for controlling the handshake of two Group III FAX
  383.               devices.  It sets negotiations between devices for speed and
  384.               data encoding, and sends a 1100 hertz communications tone
  385.               between devices.
  386.  
  387. NOTE:    Each V.nnbis complements, but is separate from, its V.nn
  388.          counterpart.  Theo Irmer, director of the ITU-TSS wrote: "I would
  389.          like you to note further, that the use of "bis", "ter" etc. in the
  390.          numbering of Recommendations (e.g. V.42bis) does not necesarily
  391.          mean a simple expansion of the Recommendation having the original
  392.          number, (e.g. V.42).  In other words, V.42 and V.42bis should be
  393.          considered as independent, separate Recommendations."
  394.  
  395. A discussion of proprietary modulation protocols -- Compucom CSP, Hayes
  396. Express, Microcom MAX, Telebit PEP, & USR HST -- is beyond the scope of this
  397. primer, except to emphasize that ALL proprietary's will connect at Hi Speed
  398. with ONLY THEIR OWN; ie HST to HST, PEP to PEP, etc. This includes v.FC,
  399. which is not a standard of any kind, though many manufacturers support or
  400. will support it in their V.34 modems.
  401.  
  402.  
  403. UARTs: Universal Asynchronous Receiver/Transmitters are required elements
  404.     in the signal circuit to convert the parallel transmission to serial (in
  405.     the serial port--or COM port).  For systems using external modems, the
  406.     terminal UART is employed.  Internal modems, however, make use of their
  407.     own internal UART.  Most commonly supplied in these cases is the 8250 or
  408.     (in AT's) the 16450.  For the majority of users, these chips will
  409.     suffice for 9600+ bps DCE rates.  Some systems, however, that are
  410.     experiencing interrupt latency (IL) are liable to experience data
  411.     overruns and lost bits when using the stock UARTs. If you fit into that
  412.     category, you will likely require an NS16550AFN (now known also as the
  413.     PC16550CN), a direct plug-in replacement for the above named UARTs.  The
  414.     16550 has onboard 16 byte FIFO buffers (transmit & receive) to retain
  415.     the otherwise lost bits, during IL occurrences.  The factors that
  416.     increase the IL risk are: slow hardware, fast modems, multitasking, and
  417.     other CPU intensive software.  Because you fit the IL profile does NOT
  418.     mean you require a 16550, just a higher risk.  If you ARE losing bits
  419.     during xfers, however, you should definitely consider the 16550.
  420.     Sometimes this means switching to a separate plug-in serial card (and
  421.     external modem) in order to incorporate the new chip.
  422.  
  423. * Bob R. -=- International COMM Echo Moderator -=- @ 1:154/40
  424.  
  425. ────────────────────────────────────────────────────────────────────────────
  426.  
  427. IDE and SCSI drives (RE: 32bit access)
  428. ======================================
  429. -> Added on October 30, 1994
  430. -> Windows for Workgroups
  431.  
  432. First, make sure your Windows swap file is located on your IDE drive.  Next,
  433. configure Control Panel / 386Enh / virtual memory for 32-bit DISK access
  434. and 32-bit FILE access.
  435.  
  436. Add these following two lines to the [386Enh] section of SYSTEM.INI:
  437.  
  438.     device=vxdldr.386
  439.     device=ios.386
  440.  
  441. This will enable the "real mode remapper". Now restart Windows.  If Windows
  442. hangs, reboot and comment out the following line from the [386Enh] section
  443. of SYSTEM.INI and restart Windows once again:
  444.  
  445.     NoEMMDriver=True
  446.  
  447.  * This is a known and proven bug in Microsoft WFWG 3.11 that occurs under
  448.    special conditions.
  449.  
  450. At this point, your IDE drive should have both 32-bit DISK access and
  451. 32-bit FILE access.  Your SCSI drive should have 32-bit FILE access only.
  452.  
  453. * Unknown InterNet Newsgroup Post
  454.  
  455. ────────────────────────────────────────────────────────────────────────────
  456.  
  457. Connecting Two Network Cards
  458. ============================
  459. -> Added on October 30, 1994
  460.  
  461. QUESTION: "I have two computers both with WFW 3.11 installed.  I would like
  462. to share resoures and drives.  I have the opportunity to use a 3COM network
  463. card and an Allied Telesys network card.  That plus a length of 8 conductor
  464. twisted pair cable terminated with RJ45 connectors.  I also have the network
  465. card drivers that came OEM.  Will this work - or is there more hardware &
  466. software required?  Does one of the computers or another computer have to be
  467. setup as server?  Do I require a hub to interconnect the computers through?"
  468.  
  469. ANSWER: After you get the cards configured and installed you can avoid the
  470. hub by swapping the transmit and receive pairs of your cable.
  471.  
  472.           1 2 3 4 5 6 7 8
  473.           │ │ │ │ │ │ │ │
  474.          Connecting  Cable
  475.           │ │ │ │ │ │ │ │
  476.           3 6 1 4 5 2 7 8
  477.  
  478. Active pins are 1 & 2 and 3 & 6, one end is normal, one end swapped.  Also
  479. keep in mind that pairs should be kept together to keep twists from end to
  480. end, the twists are what keeps out RF and EF interference.  So pair 1 & 2
  481. and 3 & 6 should twist from end to end.
  482.  
  483. * Mark Wright @ 1:343/105
  484.  
  485. ────────────────────────────────────────────────────────────────────────────
  486.  
  487. Remote Access at Higher Speeds
  488. ==============================
  489. -> Added on October 30, 1994
  490.  
  491. First this procedure is not recommended by Microsoft, but I am successfully
  492. running it on several WFW3.11 workstations, 2 NTAS 3.1 servers, and the
  493. Daytona BETA.  Basically they don't want you to manually edit the .INF or
  494. the .INI files.
  495.  
  496. First step is to backup the MODEM.INF file!!  Next you need to have a
  497. suggested settings section for the .INF file and add this to the MODEM.INF
  498. If the manufacture doesn't have a suggested settings for your 28.8 modem,
  499. then find a modem close to the one you have, ie USR Courier D/S for the USR
  500. Courier D/S 28.8.  Copy the section of the .INF file that is similiar to the
  501. one you need.  Paste the section back in the MODEM.INF file under the
  502. original section.  Change the name of the section in brackets to a different
  503. name you will recognize later (I add 28.8 to the end).  Now you need to edit
  504. the following lines in the new section:
  505.  
  506.     MAXCARRIERBPS=14400 change this to 28800
  507.     MAXCONNECTBPS=19200 change this to 57600 if you have a 16550 uart
  508.               otherwise change this to 38400
  509.  
  510. If you don't have a 16550, I'd suggest getting one.  RAS will work at 28.8
  511. with the DTE set to 38400, but you will probably get serial over-run errors
  512. especially if modem compression is turned on.
  513.  
  514. Now save the file and reconfigure RAS.  Your "new" modem will be one of the
  515. entries you can choose.  I have heard of problems with modem compression
  516. causing serial overruns even at 57600.  So try it with compression on, if
  517. you have problems turn it off.  RAS at 28.8 is actually workable.  Files
  518. transfers are quick, but if you have noisy lines be carefull because RAS
  519. uses the network protocols not an error correcting protocol like zmodem.
  520.  
  521. * Unknown Newsgroup Post
  522.  
  523. ────────────────────────────────────────────────────────────────────────────
  524.  
  525. USRobotics Sportster Modem
  526. ==========================
  527. -> Added on October 30, 1994
  528.  
  529. The proven initialization string for the USR Sportster is as follows.  Type
  530. AT&F to reset to factory defaults before entering and saving (AT&W) the new
  531. settings.
  532.  
  533.     AT&B1&N0&H1&K3&A1&M4&I0&R2S10=15V1X4S27=32
  534.  
  535. After you save the settings, use ATZ as your Modem Init string in all the
  536. programs that use it.  You should regularily achieve 1650 cps on a Zmodem
  537. download on normal phone lines.
  538.  
  539. * jeff.marchi@pcgfx.com
  540.  
  541. (If you want to enter this in the initialization string slot of your
  542. comm prog then add ^M directly at the end of the string).
  543.  
  544. Steps to utilizing this string:
  545.  
  546. 1) Go to the Terminal screen and type AT&F <enter> to restore your factory
  547.     defaults.
  548. 2) CAREFULLY type this string to the Terminal window *exactly* as above.
  549.     Hit the <enter> key.  When you get the "OK" signal ...
  550. 3) Type AT&W <enter>.  This will save the string in your NVRAM.
  551. 4) Change your init string in Telemate to ATZ^M, and this will activate your
  552.     NVRAM settings each time you initialize or return to Originate Mode.
  553.  
  554. If you want a faster dial sequence than default (S11-70), then type
  555. ATS11=50&W this will speed up the dial sequence and save it to NVRAM.  Again,
  556. having ATZ as your Telemate init string will utilize your NVRAM settings.
  557.  
  558. The following is a quick breakdown of what the commands in this string do:
  559.  
  560. 1) &B1  This locks the serial port at the speed you have set (this should be
  561.          38400 for 14400s; 19200 for 9600s).
  562. 2) &N0  This allows variable rate connections.
  563. 3) &H1  Enables hardware flow control (CTS).
  564. 4) &K3  Disables MNP5 data compression while still allowing Selective Data
  565.          Compression based on V.42bis.  MNP5 is not useful for already
  566.          compressed files...in fact it adds data to the files thus degrading
  567.          performance.
  568. 5) &A1  This enables ARQ error control result codes.
  569. 6) &M4  Normal or default ARQ error control is enabled.
  570. 7) &I0  Xon/Xoff software flow control is disabled.
  571. 8) &R2  RTS (hardware flow control) is enabled.
  572. 9) S10=15  Delay of 1.5 seconds before hang-up if carrier is lost.
  573. 10) V1 Verbal Result Codes is enabled.
  574. 11) X4 Recognizes all result codes (default).
  575. 12) S27=32  Disabled V.42 (enabled MNP).
  576.  
  577. * Gordon Vanscheik @ 1:3417/2
  578.  
  579. Some Sportsters were sold that had Dual Standard ROMS in them.  There is a
  580. "magic" string that you can enter and your modem will turn into and stay as
  581. a 16800 Courier Dual Standard.  To verify the change, type ATI4 or ATI5 in
  582. a communications program.  The modem will not return to a Sportster until it
  583. loses power, resetting by ATZ will not do it!  This only works with certain
  584. dated ROMS!
  585.  
  586.  ATGW03C6,22GW05CD,2F
  587.  
  588. * tony.madsen@freddy.supernet.ab.ca
  589.  
  590. ────────────────────────────────────────────────────────────────────────────
  591.  
  592. Connecting Two Modems
  593. =====================
  594. -> Added on October 30, 1994
  595.  
  596. If you're on a voice call with someone and want to transfer a file or do
  597. something over the modem, use this little trick to save yourself from the
  598. need to hang up and redial.  Make sure both modems are initialized and
  599. ready, then type the following commands:
  600.  
  601.     ATX3D on one computer
  602.     ATA on the other one
  603.  
  604. It doesn't matter which computer uses which command, but you can't use the
  605. same on both.
  606.  
  607. * jamie.hermans@tech-spk.alive.ampr.ab.ca
  608.   or FidoNet: Jamie Hermans @ 1:342/707
  609.  
  610. ────────────────────────────────────────────────────────────────────────────
  611.  
  612. SHHHH ... Quite!
  613. ================
  614. -> Added on October 30, 1994
  615.  
  616. Doing some late night modemming?  Turn the speaker down with ATL0 or L1.
  617. Turn it completely off with ATM0.
  618.  
  619. * PC Computing - August 1994
  620.  
  621. ────────────────────────────────────────────────────────────────────────────
  622.  
  623. Sluggish Compression?
  624. =====================
  625. -> Added on October 30, 1994
  626.  
  627. If you have a 386 or faster, and are using DoubleSpace, you can speed
  628. things up a little bit.  First, type "DBLSPACE /INFO" to locate the
  629. uncompressed drive containing the compressed file DBLSPACE.000.  Go to the
  630. root directory of that drive and type "ATTRIB -S -H -R DBLSPACE.INI".  Now
  631. edit DBLSPACE.INI and add "Enable386=1" as it's own line.  Save and exit
  632. the editor and at the prompt type "ATTRIB +S +H +R DBLSPACE.INI".  Reboot
  633. for the change to take effect.
  634.  
  635. * PC Computing - August 1994
  636.  
  637. This has been tested with the new DriveSpace (DOS 6.22) and appears to work
  638. just fine.  Simply substitute "DRVSPACE.*" with "DBLSPACE.*" in the example
  639. above.
  640.  
  641. * jamie.hermans@tech-spk.alive.ampr.ab.ca
  642.   or FidoNet: Jamie Hermans @ 1:342/707
  643.  
  644. ────────────────────────────────────────────────────────────────────────────
  645.